home *** CD-ROM | disk | FTP | other *** search
- local scenario = GetProperties()
-
- scenario.Title = "dm_twin_islands"
- scenario.ScenarioType = SCT_DEATHMATCH
- scenario.Description = "dm_twin_islands_d"
- scenario.Map = "twin islands.dat"
- scenario.iSortOrder = 180
-
- scenario.SmallSecAllies = 0 -- from 0
- scenario.MediumSecAllies = 4 -- from 14
- scenario.LargeSecAllies = 2 -- from 7
-
- scenario.Picture = "twin_islands.dds"
- scenario.MapSize = 3
-
- SetAllies( AI_RELAXED, DENSITY_V_LOW, 0, 0, 2, 0, 0, 1 )
- SetAllies( AI_EASY, DENSITY_V_LOW, 0, 0, 2, 0, 2, 0 )
- SetAllies( AI_MEDIUM, DENSITY_V_LOW, 0, 1, 1, 0, 1, 1 )
- SetAllies( AI_HARD, DENSITY_V_LOW, 0, 2, 0, 0, 0, 2 )
- SetAllies( AI_IMPOSSIBLE, DENSITY_V_LOW, 0, 0, 1, 0, 0, 2 )
-
- SetAllies( AI_RELAXED, DENSITY_LOW, 0, 3, 2, 0, 3, 0 )
- SetAllies( AI_EASY, DENSITY_LOW, 0, 4, 1, 0, 2, 1 )
- SetAllies( AI_MEDIUM, DENSITY_LOW, 0, 3, 1, 0, 3, 1 )
- SetAllies( AI_HARD, DENSITY_LOW, 0, 2, 1, 0, 4, 1 )
- SetAllies( AI_IMPOSSIBLE, DENSITY_LOW, 0, 3, 0, 0, 3, 2 )
-
- SetAllies( AI_RELAXED, DENSITY_MEDIUM, 0, 5, 3, 0, 3, 1 )
- SetAllies( AI_EASY, DENSITY_MEDIUM, 0, 6, 2, 0, 3, 2 )
- SetAllies( AI_MEDIUM, DENSITY_MEDIUM, 0, 4, 2, 0, 4, 2 )
- SetAllies( AI_HARD, DENSITY_MEDIUM, 0, 3, 2, 0, 6, 2 )
- SetAllies( AI_IMPOSSIBLE, DENSITY_MEDIUM, 0, 3, 1, 0, 5, 3 )
-
- SetAllies( AI_RELAXED, DENSITY_HIGH, 0, 8, 3, 0, 3, 3 )
- SetAllies( AI_EASY, DENSITY_HIGH, 0, 7, 3, 0, 4, 3 )
- SetAllies( AI_MEDIUM, DENSITY_HIGH, 0, 5, 3, 0, 5, 3 )
- SetAllies( AI_HARD, DENSITY_HIGH, 0, 4, 3, 0, 7, 3 )
- SetAllies( AI_IMPOSSIBLE, DENSITY_HIGH, 0, 3, 3, 0, 8, 3 )
-
- SetAllies( AI_RELAXED, DENSITY_V_HIGH, 0, 8, 5, 0, 6, 2 )
- SetAllies( AI_EASY, DENSITY_V_HIGH, 0, 8, 4, 0, 6, 3 )
- SetAllies( AI_MEDIUM, DENSITY_V_HIGH, 0, 7, 3, 0, 7, 3 )
- SetAllies( AI_HARD, DENSITY_V_HIGH, 0, 6, 3, 0, 8, 4 )
- SetAllies( AI_IMPOSSIBLE, DENSITY_V_HIGH, 0, 6, 2, 0, 8, 5 )
-
-
- scenario.bIsFirstDisclosureObliged = true
- scenario.FirstDisclose = 1
- scenario.FurtherDisclose = 1
-
- scenario.RevenueTurnsCount = 10
-
- function CheckForVictory()
- return dmCheckForVictory()
- end
-
- function OnShowObjectives()
- dmShowObjectives()
- end